encoding/hex.dumper.n (field)
6 uses
encoding/hex (current package)
hex.go#L233: n uint // number of bytes, total
hex.go#L256: h.buf[0] = byte(h.n >> 24)
hex.go#L257: h.buf[1] = byte(h.n >> 16)
hex.go#L258: h.buf[2] = byte(h.n >> 8)
hex.go#L259: h.buf[3] = byte(h.n)
hex.go#L289: h.n++
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |